home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if "%1" == "" goto INSTRUCT
-
- :REMOVE
- echo MATH CHALLENGE Hard Disk Removal
- echo --------------------------------
- echo This program will remove MATH CHALLENGE files
- echo stored a directory called %1\CHLLNG on your hard
- echo disk.
- pause
- cls
-
- del %1\CHLLNG\PARENT.EXE
- del %1\CHLLNG\CHILD.EXE
- del %1\CHLLNG\MCCHILD.DAT
- del %1\CHLLNG\FJOCKB.DWM
- del %1\CHLLNG\LNDNB3.DWM
- del %1\CHLLNG\OHOH.DWD
- del %1\CHLLNG\SUPERJOB.DWD
- del %1\CHLLNG\GOODWORK.DWD
- del %1\CHLLNG\WAYTOGO.DWD
- del %1\CHLLNG\INCORREC.DWD
- del %1\CHLLNG\OOPS.DWD
- del %1\CHLLNG\RHINO.IMG
- del %1\CHLLNG\OTTER.IMG
- del %1\CHLLNG\PDOGS.IMG
- del %1\CHLLNG\BEARS.IMG
- del %1\CHLLNG\GNPIG.IMG
- del %1\CHLLNG\PEACOCK.IMG
- del %1\CHLLNG\ELEPHANT.IMG
- del %1\CHLLNG\TIGER.IMG
- del %1\CHLLNG\TITLE1.IMG
- del %1\CHLLNG\TITLE2.IMG
- del %1\CHLLNG\TITLE3.IMG
- del %1\CHLLNG\OWL1.IMG
- del %1\CHLLNG\OWL2.IMG
- del %1\CHLLNG\OWL3.IMG
- del %1\CHLLNG\OWL4.IMG
- del %1\CHLLNG\OWL5.IMG
- del %1\CHLLNG\TITLE.PLT
- del %1\CHLLNG\TIGER.PLT
- del %1\CHLLNG\RHINO.PLT
- del %1\CHLLNG\OTTER.PLT
- del %1\CHLLNG\PDOGS.PLT
- del %1\CHLLNG\BEARS.PLT
- del %1\CHLLNG\GNPIG.PLT
- del %1\CHLLNG\PEACOCK.PLT
- del %1\CHLLNG\ELEPHANT.PLT
- del %1\CHLLNG\HELVB.FON
- del %1\CHLLNG\FILE_ID.DIZ
- del %1\CHLLNG\INSTRUCT.TXT
- del %1\CHLLNG\ORDRFORM.TXT
- del %1\CHLLNG\INSTALL.BAT
- del %1\CHLLNG\ASPINFO.TXT
- del %1\CHLLNG\READ_ME.1ST
- del %1\CHLLNG\READ_ME.BAT
- del %1\CHLLNG\VENDOR.DOC
- del %1\CHLLNG\VENDOR.TXT
- del %1\CHLLNG\VENDINFO.DIZ
-
- cls
- echo REMAINING CLEAN-UP INSTRUCTIONS
- echo -------------------------------
- echo All MATH CHALLENGE files have been removed
- echo from your hard drive with the exception of this one.
- echo To complete your clean-up, you should do the following
- echo (commands needed shown in parenthesis):
- echo 1.) Delete REMOV_MC.BAT from the \CHLLNG directory
- echo (DEL REMOV_MC.BAT)
- echo 2.) Change from the current to hard drive root directory
- echo (CD\)
- echo 3.) Remove directory \CHLLNG
- echo (RD\CHLLNG)
- pause
- cls
- goto EXIT
-
- :INSTRUCT
- cls
- echo MATH CHALLENGE Hard Disk Removal
- echo --------------------------------
- echo This program removes MATH CHALLENGE files from
- echo a directory \CHLLNG on your hard drive. For this
- echo program, please adopt the following format:
- echo -
- echo REMOV_MC C:
- echo -
- echo where C: = hard drive on which the program is to be
- echo installed
- echo -
- echo Substitute other drive letter as appropriate.
- pause
- cls
- goto EXIT
-
- :EXIT